GetEnumerator Method

Task Parallel System.Threading

Returns an enumerator that iterates through the ConcurrentStack<(Of <(T>)>).

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Function GetEnumerator As IEnumerator(Of T)
C#
public IEnumerator<T> GetEnumerator()

Return Value

An enumerator for the ConcurrentStack<(Of <(T>)>).

Remarks

The enumeration represents a moment-in-time snapshot of the contents of the stack. It does not reflect any updates to the collection after GetEnumerator()()() was called. The enumerator is safe to use concurrently with reads from and writes to the stack.

See Also